home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / games2 / rotise12.zip / CMDTABLE.C < prev    next >
C/C++ Source or Header  |  1992-04-03  |  2KB  |  81 lines

  1. #include "rotise.h"
  2.  
  3. /* Must be in alphabetical order! */
  4.  
  5. CMDLIST CmdTable[] = {
  6. {     "#",
  7.     "- Comment char. Anything after this, up to EOL, is ignored.",
  8.     comment },
  9. {    "$",
  10.     "Transaction Amount - Cost of transaction specifier.\n",
  11.     cost },
  12. {    ";",
  13.     "Comment char. Anything after this, up to EOL, is ignored.",
  14.     comment },
  15. {     "=",
  16.     "Date Filename [Pfilename] - Declare new interval.",
  17.     interval },
  18. {    "activate",
  19.     "RotoTeam PlayerKey - Activate player.",
  20.     activate },
  21. {    "add",
  22.     "RotoTeam PlayerKey Slot Salary Contract FullName - Add player to roster.",
  23.     add },
  24. {     "bstats",
  25.     "StatList - Indicate batter stats.",
  26.     bstats },
  27. {    "claim",
  28.     "RotoTeam PlayerKey Slot [FullName] - claim player from free agent list.",
  29.     claim },
  30. {    "create",
  31.     "PlayerKey Positions - Create a new player with position list",
  32.     create },
  33. {    "expand",
  34.     "RotoTeam PlayerKey P|K - Add roster expansion player.",
  35.     expand },
  36. {     "hide",
  37.     "PlayerKey - Hide player on free agent list.",
  38.     hide },
  39. {     "league",
  40.     "FullName - Give name and description to league.",
  41.     league },
  42. {     "minors",
  43.     "RotoTeam PlayerKey [FullName] - Add player to team's minor league reserve.",
  44.     minors },
  45. {    "move",
  46.     "RotoTeam PlayerKey NewSlot - change player's slot.",
  47.     move },
  48. {    "oposf",
  49.     "Filename - name of last year's position file.",
  50.     oposf },
  51. {    "owner",
  52.     "RotoTeam FullName - assign owner(s) to RotoTeam.",
  53.     owner },
  54. {    "pstats",
  55.     "StatList - Indicate pitcher stats.",
  56.     pstats },
  57. {    "release",
  58.     "RotoTeam PlayerKey [W] - Release player.",
  59.     release },
  60. {    "reserve",
  61.     "RotoTeam PlayerKey - Reserve player.",
  62.     reserve },
  63. {     "salunit",
  64.     "Pennies - How many pennies in a salary unit.",
  65.     salunit },
  66. {    "slot",
  67.     "SlotName Positions - Roster slot description.",
  68.     slot },
  69. {    "status",
  70.     "PlayerKey [StatWord [date]] - Assign status to player.",
  71.     status },
  72. {    "team",
  73.     "RotoTeam FullName - Name a rotisserie team.",
  74.     team },
  75. {     "trade",
  76.     "RotoTeam PlayerKey NewRotoTeam Cost - trade a player.",
  77.     trade },
  78.  
  79.  
  80. {    NULL, NULL, NULL } };    
  81.